projects
/
cargo.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a5bf3b8
)
check `cargo test` too`
author
Niko Matsakis
<niko@alum.mit.edu>
Wed, 11 Jan 2017 16:30:12 +0000
(11:30 -0500)
committer
Niko Matsakis
<niko@alum.mit.edu>
Wed, 11 Jan 2017 16:30:12 +0000
(11:30 -0500)
tests/build.rs
patch
|
blob
|
history
diff --git
a/tests/build.rs
b/tests/build.rs
index b8c5b693cca9dec08ffb15819d6833ba3b17b1c5..1fea95cf4dd260da1da0c479339f759626ea2133 100644
(file)
--- a/
tests/build.rs
+++ b/
tests/build.rs
@@
-45,6
+45,11
@@
fn cargo_compile_incremental() {
p.cargo_process("build").arg("-v").env("CARGO_INCREMENTAL", "1"),
execs().with_stderr_contains(
" Running `rustc [..] -Zincremental=[..]/target/debug/incremental`\n"));
+
+ assert_that(
+ p.cargo_process("test").arg("-v").env("CARGO_INCREMENTAL", "1"),
+ execs().with_stderr_contains(
+ " Running `rustc [..] -Zincremental=[..]/target/debug/incremental`\n"));
}
#[test]